aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/[...slug].astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/blog/[...slug].astro')
-rw-r--r--src/pages/blog/[...slug].astro11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index 8713ab5..790a920 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -19,13 +19,8 @@ const { Content } = await entry.render();
<Page title={entry.data.title} description={entry.data.description} date={formatDate(entry.data.date)}>
<main>
<a href="/blog" class="back-link">← All articles</a>
- <Content />
+ <article>
+ <Content />
+ </article>
</main>
</Page>
-<style>
- main {
- background-color: #3B513B;
- padding: 1.2em;
- border-radius: 20px;
- }
-</style>